﻿.modalAlert {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    align-items: center;
    justify-content: center;
}

.modalAlert-dialog {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: rgb(194, 193, 255); 
    width: 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px 10px 10px 10px;
    border: 3px solid rgb(71, 0, 120);
    border-radius: 10px;
}

.modalAlert-content {
    display: flex;
    flex-direction: column;
    background-color: none;
    align-items: center;
    width: 100%;
}


.modalAlert-header {
    display: flex;
    width: 100%;
    justify-content: end;
    align-items: center;
}

.closemodalAlert, .modalphotoview-close {
    font-size: medium;
    color: rgba(150,0,250,1);
    background-color: rgba(120,0,120,0.1);
    border-color: rgba(0,0,120,1);
    border-radius:50px;
    padding: 0 6px;
    transition: 0.8s ease;

}

    .closemodalAlert:hover, .modalphotoview-close:hover,
    .closemodalAlert:focus {
        color: white;
        background-color: rgba(120,0,120,1);
        cursor: pointer;
    }

.modalAlert-message {
    text-align: center;
}

.modalAlert-footer {
    display: flex;
    justify-content: center;
}

.alertbuttons {
    width: 100px;
    font-size: 12px;
    margin: 0 10px;
    border-width: 1px;
    border-color: rgba(73,1,106,1);
    border-radius: 15px;
    background-color: rgba(73,1,106,0.5);
    transition: all 1s ease;
}

    .alertbuttons:hover {
        color: white;
        background-color: rgba(73,1,106,1);
    }


.modalphotoview {
    display: block;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modalphotoview-content {
    position: absolute;
    width: 80%;
    max-width: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: solid;
    border-width: 5px;
    border-color: rgba(0,0,120,1);
    border-radius: 10px;
    padding: 10px;
}

.modalphotoview-close {
    float: right;
    margin-bottom:5px;
}

.large-image {
    width: 100%;
    height: auto;
}

/*

*/

@media (max-width: 576px) {
    .modalAlert-dialog {
        width:75%;
    }
}